-
Notifications
You must be signed in to change notification settings - Fork 594
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re-added --only-output-calls-starting-in-intervals
as a deprecated argument with warning.
#9000
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jamesemery Thanks for doing this. I think it needs a few changes but it should be good to merge after that.
* This option can only be activated if intervals are specified. | ||
*/ | ||
@Deprecated | ||
@Argument(fullName= ONLY_OUTPUT_CALLS_STARTING_IN_INTERVALS_FULL_NAME, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this was previously advanced as well, I'd tag it again.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, I believe we should be using barclay's @DeprecatedFeature
instead of java deprecated. You can include a "detail" message in it that explains what to use instead.
@@ -1,21 +1,17 @@ | |||
package org.broadinstitute.hellbender.tools.walkers.mutect; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change seems accidental.
@Deprecated | ||
@Argument(fullName= GenotypeGVCFs.ONLY_OUTPUT_CALLS_STARTING_IN_INTERVALS_FULL_NAME, | ||
doc="Restrict variant output to sites that start within provided intervals", | ||
optional=true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comments as above.
@lbergelson